From: Alexandre Emsenhuber Date: Thu, 20 Dec 2012 19:44:47 +0000 (+0100) Subject: Improve documentation of content handler stuff X-Git-Tag: 1.31.0-rc.0~21237^2 X-Git-Url: http://git.cyclocoop.org/%22.%24match%5B1%5D.%22?a=commitdiff_plain;h=ddf601f7d31dbfa069fa9d097bb9bed9bfa00f9f;p=lhc%2Fweb%2Fwiklou.git Improve documentation of content handler stuff - Split file and class documentation - Add some missing file/class descriptions - Add missing @ingroup Content Change-Id: I7f7e3056570ca13a92f36a408c9b961c938f09a1 --- diff --git a/includes/content/AbstractContent.php b/includes/content/AbstractContent.php index 386f55aee5..cab65a5f4c 100644 --- a/includes/content/AbstractContent.php +++ b/includes/content/AbstractContent.php @@ -25,6 +25,12 @@ * * @author Daniel Kinzler */ + +/** + * Base implementation for content objects. + * + * @ingroup Content + */ abstract class AbstractContent implements Content { /** diff --git a/includes/content/Content.php b/includes/content/Content.php index 35b51c346f..75ac5f2993 100644 --- a/includes/content/Content.php +++ b/includes/content/Content.php @@ -25,6 +25,12 @@ * * @author Daniel Kinzler */ + +/** + * Base interface for content objects. + * + * @ingroup Content + */ interface Content { /** diff --git a/includes/content/ContentHandler.php b/includes/content/ContentHandler.php index cff49dfab7..2e9052854e 100644 --- a/includes/content/ContentHandler.php +++ b/includes/content/ContentHandler.php @@ -1,7 +1,34 @@